home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 80 / CD Actual 80 Julio-Agosto 2003.iso / Linux / LinuxGazette / lg / issue22 / makefile_m4 < prev    next >
Encoding:
Makefile  |  2002-08-14  |  191 b   |  18 lines

  1. .SUFFIXES: .m4 .html
  2.  
  3. .m4.html:
  4.     m4 -P $*.m4 >$*.html
  5.     chmod 644 $*.html
  6.  
  7. HTML_FILES=using_m4.html
  8.  
  9. default: $(HTML_FILES)
  10.  
  11. all: default 
  12.  
  13. *.html: stdlib.m4
  14.  
  15. clean:
  16.     rm -rf *~ $(HTML_FILES)
  17.  
  18.